home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / comm2 / termsorc.lha / Extras / Source / gtlayout-source.lha / LTP_InitIText.c < prev    next >
C/C++ Source or Header  |  1995-09-24  |  469b  |  26 lines

  1. /*  GadTools layout toolkit
  2. **
  3. **  Copyright © 1993-1995 by Olaf `Olsen' Barthel
  4. **  Freely distributable.
  5. **
  6. **  :ts=4
  7. */
  8.  
  9. #include "gtlayout_global.h"
  10.  
  11. #ifdef DO_MENUS
  12.  
  13.     /* LTP_InitIText(RootMenu *Root,struct IntuiText *IText):
  14.      *
  15.      *    Initialize IntuiText data structure with defaults.
  16.      */
  17.  
  18. VOID __regargs
  19. LTP_InitIText(RootMenu *Root,struct IntuiText *IText)
  20. {
  21.     IText -> FrontPen    = Root -> TextPen;
  22.     IText -> ITextFont    = Root -> TextAttr;
  23. }
  24.  
  25. #endif    /* DO_MENUS */
  26.